import { Suspense } from "react";
import { Skeleton } from "@/components/ui/skeleton";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import VendorDocumentPage from "./vendor-document-page";
import { Shell } from "@/components/shell";
export const metadata = {
title: "문서 조회 및 업로드",
description: "협력업체 문서 조회 및 파일 업로드",
};
// ============================================================================
// 로딩 스켈레톤
// ============================================================================
function VendorDocumentSkeleton() {
return (
);
}
export default async function DocumentUploadPage({
searchParams,
}: {
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
}) {
const params = await searchParams;
return (
{/* 헤더 */}
{/* 메인 컨텐츠 */}
}>
);
}